returned by this-single-command-raw-keys before appending it to
unread-command-event.
(if inhibit-quit (setq quit-flag nil)))
(cond ((null char))
((not (integerp char))
- (setq unread-command-events (this-single-command-raw-keys)
+ (setq unread-command-events (listify-key-sequence (this-single-command-raw-keys))
done t))
((/= (logand char ?\M-\^@) 0)
;; Turn a meta-character into a character with the 0200 bit set.
((and (not first) (eq char ?\C-m))
(setq done t))
((not first)
- (setq unread-command-events (this-single-command-raw-keys)
+ (setq unread-command-events (listify-key-sequence (this-single-command-raw-keys))
done t))
(t (setq code char
done t)))